LEADTOOLS WebForms and AJAX (Leadtools.Web.Services assembly) Send comments on this topic. | Back to Introduction - All Topics | Help Version 17.0.3.25
UpdateUI Method
See Also 
Leadtools.Web.Services Namespace > ServiceStreamer<TStreamedData,TServiceState> Class : UpdateUI Method



currentStreamNumber
A number which identify the stream number which this streamedData belongs to.
state
User state information.
streamedData
The actual data streamed from the service.
currentStreamNumber
A number which identify the stream number which this streamedData belongs to.
state
User state information.
streamedData
The actual data streamed from the service.
Updates the user interface with the information received from the web service.

Syntax

Visual Basic (Declaration) 
Protected MustOverride Sub UpdateUI( _
   ByVal currentStreamNumber As Integer, _
   ByVal state As TServiceState, _
   ByVal streamedData As TStreamedData _
) 
Visual Basic (Usage)Copy Code
Dim instance As ServiceStreamer(Of TStreamedData,TServiceState)
Dim currentStreamNumber As Integer
Dim state As TServiceState
Dim streamedData As TStreamedData
 
instance.UpdateUI(currentStreamNumber, state, streamedData)
C# 
protected abstract void UpdateUI( 
   int currentStreamNumber,
   TServiceState state,
   TStreamedData streamedData
)
C++/CLI 
protected:
abstract void UpdateUI( 
   int currentStreamNumber,
   TServiceState^ state,
   TStreamedData^ streamedData
) 

Parameters

currentStreamNumber
A number which identify the stream number which this streamedData belongs to.
state
User state information.
streamedData
The actual data streamed from the service.

Remarks

Use this method to update the user interface with the information streamed from the web service.

Requirements

Target Platforms: Windows 2000, Windows XP, Windows Server 2003 family, Windows Server 2008 family

See Also